.ft-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ft-carousel p,
.ft-carousel ul,
.ft-carousel li {
	margin: 0;
	padding: 0;
}

.ft-carousel ul,
.ft-carousel ol {
	list-style: none;
}

.ft-carousel .carousel-inner {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}

.ft-carousel .carousel-inner .carousel-item {
	float: left;
	height: 100%;
	position: relative;
}

.ft-carousel .carousel-item a,
.ft-carousel .carousel-item a img {
	display: block;
	width: 100%;
	height: 100%;
}

.ft-carousel .carousel-img a,
.ft-carousel .carousel-img a img {
	display: block;
	width: 100%;
	height: 100%;
}

.ft-carousel .carousel-item a:hover img {
	transform: scale(1.22);
	transition: all 0.5s;
}

.ft-carousel .carousel-item .carousel-item-title {
	box-sizing: border-box;
	width: 100%;
	height: 36px;
	padding-left: 16px;
	padding-right: 120px;
	line-height: 36px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .3);
	text-align: left;
	font-size: 16px;
}

.ft-carousel .carousel-item .carousel-item-title a {
	display: inline;
	color: #fff;
	font-size: 16px;
}

.ft-carousel .carousel-indicators {
	box-sizing: border-box;
	position: absolute;
	right: 0;
	bottom: 12px;
	padding: 0 6px;
	text-align: center;
	font-size: 0;
}

.ft-carousel .carousel-indicators span {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #fff;
	margin: 0 4px;
	border-radius: 6px;
	cursor: pointer;
}

.ft-carousel .carousel-indicators span.active {
	width: 20px;
	background-color: red;
}

.ft-carousel .carousel-btn {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 74px;
	margin-top: -47px;
	cursor: pointer;
	background-size: 80px 148px;
	background-repeat: no-repeat;
	background-position-y: bottom;
	background-image: url(../img/focus_btn.png);
}

.ft-carousel .carousel-prev-btn {
	left: 0;
	background-position-x: left;
}

.ft-carousel .carousel-next-btn {
	right: 0;
	background-position-x: right;
}

.ft-carousel .carousel-prev-btn:hover,
.ft-carousel .carousel-next-btn:hover {
	background-position-y: top;
}